選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 

13 行
181 B

  1. <template>
  2. <section>
  3. {{ filmId }}
  4. </section>
  5. </template>
  6. <script setup lang="ts">
  7. const route = useRoute()
  8. const filmId = ref('')
  9. filmId.value = route.params.id
  10. </script>